Skip to content

Commit 773f1d0

Browse files
committed
[ADD] change dialogue, ignore render codes
1 parent 3c6eb54 commit 773f1d0

7 files changed

+7
-7
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*.dll
88
*.so
99
*.dylib
10-
10+
*.bat
1111
# Test binary, built with `go test -c`
1212
*.test
1313

documentation/73-logging.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Your program demonstrates the use of the standard `log` package and the `log/slog` package (structured logger) in Go. Let me break down the code and provide some explanations:
1+
This program demonstrates the use of the standard `log` package and the `log/slog` package (structured logger) in Go. Let me break down the code and provide some explanations:
22

33
```go
44
package main

documentation/74-http-client.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Your program demonstrates making an HTTP GET request to the "https://gobyexample.com" website and printing the first five lines of the response body. Here's a breakdown of the code:
1+
This program demonstrates making an HTTP GET request to the "https://gobyexample.com" website and printing the first five lines of the response body. Here's a breakdown of the code:
22

33
```go
44
package main

documentation/75-http-server.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Your program is a simple HTTP server written in Go. It defines two HTTP handlers: `/hello` and `/headers`. When the server receives a request to either of these paths, it will respond accordingly.
1+
This program is a simple HTTP server written in Go. It defines two HTTP handlers: `/hello` and `/headers`. When the server receives a request to either of these paths, it will respond accordingly.
22

33
Here's a breakdown of the code:
44

documentation/76-context.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Your program is a simple HTTP server written in Go that defines an HTTP handler function called `hello`. This handler uses the request's context to implement a timeout for processing the request.
1+
This program is a simple HTTP server written in Go that defines an HTTP handler function called `hello`. This handler uses the request's context to implement a timeout for processing the request.
22

33
Here's a breakdown of the code:
44

documentation/77-spawning-process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The code you provided is a Go program that demonstrates executing shell commands from Go using the `os/exec` package. Here's a breakdown of the code:
1+
This code is a Go program that demonstrates executing shell commands from Go using the `os/exec` package. Here's a breakdown of the code:
22

33
```go
44
package main

documentation/78-exec`ing-processes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The code you provided demonstrates using the `syscall.Exec` function to replace the current Go process with a new process (in this case, running the `ls` command). Here's a breakdown of the code:
1+
This code demonstrates using the `syscall.Exec` function to replace the current Go process with a new process (in this case, running the `ls` command). Here's a breakdown of the code:
22

33
```go
44
package main

0 commit comments

Comments
 (0)