Skip to content

Commit b91bd64

Browse files
committed
Rephrase the paragraphs
Signed-off-by: Baiju Muthukadan <[email protected]>
1 parent eb1a040 commit b91bd64

20 files changed

+237
-107
lines changed

concurrency.tex

+6-6
Original file line numberDiff line numberDiff line change
@@ -316,9 +316,9 @@ \subsection{Additional Exercises}
316316

317317
\section*{Summary}
318318

319-
This chapter explained concurrency features of Go. Based on your
320-
problem, you can choose channels or other synchronization techniques.
321-
This chapter covered goroutines and channels usage. It covered
322-
Waitgroups, Select statement. It also covered buffered channels,
323-
channel direction. The chapter also touched upon \textit{sync.Once}
324-
function usage.
319+
This chapter explained how to use Go's concurrency features. You can choose
320+
channels or other synchronization techniques, depending on your problem. This
321+
chapter covered goroutines and how to use channels. It also covered Waitgroups
322+
and Select statements. Additionally, it covered buffered channels and channel
323+
direction. Finally, the chapter briefly discussed the \textit{sync.Once}
324+
function.

control-structures.tex

+19-6
Original file line numberDiff line numberDiff line change
@@ -841,9 +841,22 @@ \subsection{Additional Exercises}
841841

842842
\section*{Summary}
843843

844-
This chapter introduced control structures available in Go except those related
845-
to concurrency. The \textit{if} control structure was covered first,
846-
then \textit{for} loop explained. The \textit{switch} cases was discussed later.
847-
Then \textit{defer} statement and finally \textit{goto} control structure was
848-
explained in detail. This chapter also briefly explained about accessing command
849-
line arguments from the program.
844+
This chapter explained the control structures available in Go, except those
845+
related to concurrency. The \textit{if} control structure was covered first, then the
846+
\textit{for} loop was explained. The \textit{switch} cases were discussed later. Then the
847+
\textit{defer} statement and finally, the \textit{goto} control structure was explained in
848+
detail. This chapter also briefly explained accessing command line arguments
849+
from the program.
850+
851+
Control structures are used to control the flow of execution in a program. They
852+
allow you to execute code conditionally, repeatedly, or in a specific order.
853+
854+
\begin{itemize}
855+
856+
\item The \textit{if} control structure is used to execute code if a condition is met.
857+
\item The \textit{for} loop is used to execute code repeatedly until a condition is met.
858+
\item The \textit{switch} statement is used to execute code based on the value of a variable.
859+
\item The \textit{defer} statement is used to execute code after the current function has finished executing.
860+
\item The \textit{goto} statement is used to jump to a specific label in the code.
861+
862+
\end{itemize}

data-structures.tex

+17-8
Original file line numberDiff line numberDiff line change
@@ -1072,11 +1072,20 @@ \subsection{Additional Exercises}
10721072
\section*{Summary}
10731073

10741074
This chapter introduced various data structures in Go. These data structures
1075-
will be helpful for organizing data. The chapter started with a section about
1076-
zero values. Then constants explained in detail including \textit{iota} keyword
1077-
for defining incrementing constants. Next, the chapter briefly explained about
1078-
arrays. Then slices, the more useful data structure built on top of array is
1079-
explained. Then we looked at how to define custom data types using existing
1080-
primitive types. The struct was introduced which is more useful to create custom
1081-
data types. Pointer is also covered. The next chapter will explain more about
1082-
functions and methods.
1075+
help organize data in a way that makes it easier to use and understand. The
1076+
chapter started with a section about zero values, which are values that are
1077+
assigned to variables when they are declared but not initialized. Then,
1078+
constants were explained in detail, including the \textit{iota} keyword, which
1079+
can be used to define incrementing constants. Next, the chapter briefly
1080+
explained arrays, which are data structures that can store a fixed number of
1081+
elements of the same type. Then, slices were explained, which are more flexible
1082+
data structures that can store a variable number of elements of the same type.
1083+
Slices are built on top of arrays, and they inherit many of the same properties.
1084+
Next, the chapter looked at how to define custom data types using existing
1085+
primitive types. Custom data types can be used to group together related data
1086+
and make it easier to work with. The struct was introduced as a way to define
1087+
custom data types. Structs can be used to store a collection of related data
1088+
items, such as the name, age, and address of a person. Pointers were also
1089+
covered. Pointers are variables that store the address of another variable.
1090+
Pointers can be used to access the value of another variable indirectly. The
1091+
next chapter will explain more about functions and methods.

functions.tex

+25-5
Original file line numberDiff line numberDiff line change
@@ -514,8 +514,28 @@ \subsection{Additional Exercises}
514514

515515
\section*{Summary}
516516

517-
This chapter explained all the major aspects of functions in Go. The
518-
chapter covered how to send input parameters and return values. It
519-
also explained about variadic function and anonymous function. This
520-
chapter briefly also covered methods. The next chapter will cover
521-
interfaces. Along with that, we will learn more about methods.
517+
This chapter explained the main features of functions in Go. It covered how to
518+
send input parameters and receive return values. It also explained about
519+
variadic functions and anonymous functions. This chapter briefly covered
520+
methods. The next chapter will cover interfaces. Along with that, we will learn
521+
more about methods.
522+
523+
Brief summary of key concepts introduced in this chapter:
524+
525+
\begin{itemize}
526+
527+
\item Functions are used to group together related code and make it easier to read and
528+
understand. They can also be used to reuse code in different parts of a
529+
program.
530+
531+
\item Input parameters are values that are passed into a function when it is called.
532+
Return values are values that are returned by a function when it finishes
533+
executing.
534+
535+
\item Variadic functions are functions that can accept a variable number of input
536+
parameters. Anonymous functions are functions that are defined without a name.
537+
538+
\item Methods are functions that are associated with a specific type. They can be used
539+
to operate on objects of that type.
540+
541+
\end{itemize}

io.tex

+4-5
Original file line numberDiff line numberDiff line change
@@ -335,8 +335,7 @@ \subsection{Additional Exercises}
335335

336336
\section*{Summary}
337337

338-
This chapter discussed about various input/output related
339-
functionalities in Go. The chapter explained using command line
340-
arguments and interactive input. The chaptered using \textit{flag}
341-
package. It also explained about various string formatting
342-
techniques.
338+
This chapter discussed the input/output (I/O) features of the Go programming
339+
language. It explained how to use command line arguments and interactive input,
340+
and how to use the \textit{flag} package to parse command line arguments. It
341+
also explained various string formatting techniques.

objects.tex

+25-5
Original file line numberDiff line numberDiff line change
@@ -341,8 +341,28 @@ \subsection{Additional Exercises}
341341

342342
\section*{Summary}
343343

344-
This chapter explained the concept of interfaces and it's uses.
345-
Interface is an important concept in Go. Understanding interfaces and
346-
properly using it makes the design robust. The chapter covered empty
347-
interface. Also, briefly explained about pointer receiver and its
348-
significance. Type assertions and type switches are also explained.
344+
This chapter explained the concept of interfaces and their uses. Interfaces are
345+
an important concept in Go. Understanding interfaces and using them properly
346+
makes the design robust. The chapter covered the empty interface, pointer
347+
receivers, and type assertions and type switches.
348+
349+
Brief summary of key concepts introduced in this chapter:
350+
351+
\begin{itemize}
352+
353+
\item An interface is a set of methods that a type must implement. A type that
354+
implements an interface can be used anywhere an interface is expected. This
355+
allows for greater flexibility and reusability in Go code.
356+
357+
\item A pointer receiver is a method that takes a pointer to a struct as its receiver.
358+
Pointer receivers are often used to modify the state of a struct.
359+
360+
\item A type assertion is a way of checking the type of a value at runtime. Type
361+
assertions can be used to ensure that a value is of a certain type before
362+
using it.
363+
364+
\item A type switch is a control flow statement that allows for different code to be
365+
executed based on the type of a value. Type switches can be used to make code
366+
more robust and easier to read.
367+
368+
\end{itemize}

packages.tex

+8-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
\chapter{Packages}
44

55
\begin{quote}
6-
\textit{A little copying is better than a little dependency.} --- Go Proverb
6+
\textit{A little copying is better than a little dependency.} --- Go Proverbs
77
\end{quote}
88

99
Go encourages and provides mechanisms for code reusability. Packages
@@ -374,8 +374,10 @@ \subsection{Additional Exercises}
374374

375375
\section*{Summary}
376376

377-
This chapter explained the Go package in detail. Package is one of
378-
building block of a reusable Go program. This chapter explained about
379-
creating packages, documenting packages, and finally about publish
380-
packages. The chapter also covered modules and its usage. Finally it
381-
explained moving types across packages during refactoring.
377+
This chapter explained packages in Go programming. Packages are a collection of
378+
related Go source files that are compiled together to form a single unit. They
379+
are one of the building blocks of a reusable Go program. This chapter explained
380+
how to create packages, document packages, and publish packages. It also covered
381+
modules and their usage. Finally, it explained how to move types across packages
382+
during refactoring. By understanding packages, you can write more modular and
383+
reusable Go programs.

quickstart.tex

+5-5
Original file line numberDiff line numberDiff line change
@@ -972,8 +972,8 @@ \subsection{Additional Exercises}
972972

973973
\section*{Summary}
974974

975-
We started with a hello world program and briefly explained it. Then
976-
this chapter introduced few basic topics in Go programming language.
977-
We have covered Data Types, Variables, Comments, For Loop, Range
978-
Clause, If, Function, Operators, Slices, and Maps. The next chapters
979-
will explain the fundamental concepts in more detail.
975+
We began with a "hello world" program and briefly explained it. This chapter
976+
then introduced a few basic topics in the Go programming language. We covered
977+
data types, variables, comments, for loops, range clauses, if statements,
978+
functions, operators, slices, and maps. The following chapters will explain the
979+
fundamental concepts in more detail.

sphinx/concurrency.rst

+6-5
Original file line numberDiff line numberDiff line change
@@ -433,11 +433,12 @@ with a particular word.
433433
Summary
434434
-------
435435

436-
This chapter explained concurrency features of Go. Based on your
437-
problem, you can choose channels or other synchronization techniques.
438-
This chapter covered goroutines and channels usage. It covered
439-
Waitgroups, Select statement. It also covered buffered channels, channel
440-
direction. The chapter also touched upon *sync.Once* function usage.
436+
This chapter explained how to use Go’s concurrency features. You can
437+
choose channels or other synchronization techniques, depending on your
438+
problem. This chapter covered goroutines and how to use channels. It
439+
also covered Waitgroups and Select statements. Additionally, it covered
440+
buffered channels and channel direction. Finally, the chapter briefly
441+
discussed the *sync.Once* function.
441442

442443
.. [1]
443444
http://usingcsp.com

sphinx/control-structures.rst

+24-6
Original file line numberDiff line numberDiff line change
@@ -929,9 +929,27 @@ by 2, 3, or 5.
929929
Summary
930930
-------
931931

932-
This chapter introduced control structures available in Go except those
933-
related to concurrency. The *if* control structure was covered first,
934-
then *for* loop explained. The *switch* cases was discussed later. Then
935-
*defer* statement and finally *goto* control structure was explained in
936-
detail. This chapter also briefly explained about accessing command line
937-
arguments from the program.
932+
This chapter explained the control structures available in Go, except
933+
those related to concurrency. The *if* control structure was covered
934+
first, then the *for* loop was explained. The *switch* cases were
935+
discussed later. Then the *defer* statement and finally, the *goto*
936+
control structure was explained in detail. This chapter also briefly
937+
explained accessing command line arguments from the program.
938+
939+
Control structures are used to control the flow of execution in a
940+
program. They allow you to execute code conditionally, repeatedly, or in
941+
a specific order.
942+
943+
- The *if* control structure is used to execute code if a condition is
944+
met.
945+
946+
- The *for* loop is used to execute code repeatedly until a condition
947+
is met.
948+
949+
- The *switch* statement is used to execute code based on the value of
950+
a variable.
951+
952+
- The *defer* statement is used to execute code after the current
953+
function has finished executing.
954+
955+
- The *goto* statement is used to jump to a specific label in the code.

sphinx/data-structures.rst

+19-9
Original file line numberDiff line numberDiff line change
@@ -1238,12 +1238,22 @@ Summary
12381238
-------
12391239

12401240
This chapter introduced various data structures in Go. These data
1241-
structures will be helpful for organizing data. The chapter started with
1242-
a section about zero values. Then constants explained in detail
1243-
including *iota* keyword for defining incrementing constants. Next, the
1244-
chapter briefly explained about arrays. Then slices, the more useful
1245-
data structure built on top of array is explained. Then we looked at how
1246-
to define custom data types using existing primitive types. The struct
1247-
was introduced which is more useful to create custom data types. Pointer
1248-
is also covered. The next chapter will explain more about functions and
1249-
methods.
1241+
structures help organize data in a way that makes it easier to use and
1242+
understand. The chapter started with a section about zero values, which
1243+
are values that are assigned to variables when they are declared but not
1244+
initialized. Then, constants were explained in detail, including the
1245+
*iota* keyword, which can be used to define incrementing constants.
1246+
Next, the chapter briefly explained arrays, which are data structures
1247+
that can store a fixed number of elements of the same type. Then, slices
1248+
were explained, which are more flexible data structures that can store a
1249+
variable number of elements of the same type. Slices are built on top of
1250+
arrays, and they inherit many of the same properties. Next, the chapter
1251+
looked at how to define custom data types using existing primitive
1252+
types. Custom data types can be used to group together related data and
1253+
make it easier to work with. The struct was introduced as a way to
1254+
define custom data types. Structs can be used to store a collection of
1255+
related data items, such as the name, age, and address of a person.
1256+
Pointers were also covered. Pointers are variables that store the
1257+
address of another variable. Pointers can be used to access the value of
1258+
another variable indirectly. The next chapter will explain more about
1259+
functions and methods.

sphinx/functions.rst

+22-5
Original file line numberDiff line numberDiff line change
@@ -518,8 +518,25 @@ perimeter of a circle.
518518
Summary
519519
-------
520520

521-
This chapter explained all the major aspects of functions in Go. The
522-
chapter covered how to send input parameters and return values. It also
523-
explained about variadic function and anonymous function. This chapter
524-
briefly also covered methods. The next chapter will cover interfaces.
525-
Along with that, we will learn more about methods.
521+
This chapter explained the main features of functions in Go. It covered
522+
how to send input parameters and receive return values. It also
523+
explained about variadic functions and anonymous functions. This chapter
524+
briefly covered methods. The next chapter will cover interfaces. Along
525+
with that, we will learn more about methods.
526+
527+
Brief summary of key concepts introduced in this chapter:
528+
529+
- Functions are used to group together related code and make it easier
530+
to read and understand. They can also be used to reuse code in
531+
different parts of a program.
532+
533+
- Input parameters are values that are passed into a function when it
534+
is called. Return values are values that are returned by a function
535+
when it finishes executing.
536+
537+
- Variadic functions are functions that can accept a variable number of
538+
input parameters. Anonymous functions are functions that are defined
539+
without a name.
540+
541+
- Methods are functions that are associated with a specific type. They
542+
can be used to operate on objects of that type.

sphinx/io.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -555,10 +555,10 @@ Use a struct like this to define the complex number:
555555
Summary
556556
-------
557557

558-
This chapter discussed about various input/output related
559-
functionalities in Go. The chapter explained using command line
560-
arguments and interactive input. The chaptered using *flag* package. It
561-
also explained about various string formatting techniques.
558+
This chapter discussed the input/output (I/O) features of the Go
559+
programming language. It explained how to use command line arguments and
560+
interactive input, and how to use the *flag* package to parse command
561+
line arguments. It also explained various string formatting techniques.
562562

563563
.. [1]
564564
https://en.wikipedia.org/wiki/File_descriptor

sphinx/objects.rst

+24-5
Original file line numberDiff line numberDiff line change
@@ -373,8 +373,27 @@ data type. This is how the ``error`` interface is defined:
373373
Summary
374374
-------
375375

376-
This chapter explained the concept of interfaces and it’s uses.
377-
Interface is an important concept in Go. Understanding interfaces and
378-
properly using it makes the design robust. The chapter covered empty
379-
interface. Also, briefly explained about pointer receiver and its
380-
significance. Type assertions and type switches are also explained.
376+
This chapter explained the concept of interfaces and their uses.
377+
Interfaces are an important concept in Go. Understanding interfaces and
378+
using them properly makes the design robust. The chapter covered the
379+
empty interface, pointer receivers, and type assertions and type
380+
switches.
381+
382+
Brief summary of key concepts introduced in this chapter:
383+
384+
- An interface is a set of methods that a type must implement. A type
385+
that implements an interface can be used anywhere an interface is
386+
expected. This allows for greater flexibility and reusability in Go
387+
code.
388+
389+
- A pointer receiver is a method that takes a pointer to a struct as
390+
its receiver. Pointer receivers are often used to modify the state of
391+
a struct.
392+
393+
- A type assertion is a way of checking the type of a value at runtime.
394+
Type assertions can be used to ensure that a value is of a certain
395+
type before using it.
396+
397+
- A type switch is a control flow statement that allows for different
398+
code to be executed based on the type of a value. Type switches can
399+
be used to make code more robust and easier to read.

sphinx/packages.rst

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Packages
22
========
33

4-
*A little copying is better than a little dependency.* — Go Proverb
4+
*A little copying is better than a little dependency.* — Go Proverbs
55

66
Go encourages and provides mechanisms for code reusability. Packages are
77
one of the building block for code reusability. We have seen other code
@@ -398,8 +398,11 @@ areas for circle, rectangle, and triangle.
398398
Summary
399399
-------
400400

401-
This chapter explained the Go package in detail. Package is one of
402-
building block of a reusable Go program. This chapter explained about
403-
creating packages, documenting packages, and finally about publish
404-
packages. The chapter also covered modules and its usage. Finally it
405-
explained moving types across packages during refactoring.
401+
This chapter explained packages in Go programming. Packages are a
402+
collection of related Go source files that are compiled together to form
403+
a single unit. They are one of the building blocks of a reusable Go
404+
program. This chapter explained how to create packages, document
405+
packages, and publish packages. It also covered modules and their usage.
406+
Finally, it explained how to move types across packages during
407+
refactoring. By understanding packages, you can write more modular and
408+
reusable Go programs.

sphinx/quickstart.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -978,8 +978,8 @@ can print the values.
978978
Summary
979979
-------
980980

981-
We started with a hello world program and briefly explained it. Then
982-
this chapter introduced few basic topics in Go programming language. We
983-
have covered Data Types, Variables, Comments, For Loop, Range Clause,
984-
If, Function, Operators, Slices, and Maps. The next chapters will
985-
explain the fundamental concepts in more detail.
981+
We began with a "hello world" program and briefly explained it. This
982+
chapter then introduced a few basic topics in the Go programming
983+
language. We covered data types, variables, comments, for loops, range
984+
clauses, if statements, functions, operators, slices, and maps. The
985+
following chapters will explain the fundamental concepts in more detail.

0 commit comments

Comments
 (0)