Skip to content

Commit

Permalink
fix: remove redundant quote
Browse files Browse the repository at this point in the history
  • Loading branch information
Telunsu committed Sep 4, 2020
1 parent f067256 commit 3dcf7eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1496,7 +1496,7 @@ func (f Foo) String() string {
3. 避免访问或操作全局或环境状态,如机器信息、环境变量、工作目录、程序参数/输入等。
4. 避免`I/O`,包括文件系统、网络和系统调用。

不能满足这些要求的代码可能属于要作为`main()`调用的一部分`(或程序生命周期中的其他地方),
不能满足这些要求的代码可能属于要作为`main()`调用的一部分(或程序生命周期中的其他地方),
或者作为`main()`本身的一部分写入。特别是,打算由其他程序使用的库应该特别注意完全确定性,
而不是执行“init magic”

Expand Down

0 comments on commit 3dcf7eb

Please sign in to comment.