Browse Source

Merge pull request #1067 from 01-edu/readme-updates-d-1040

readme updates according to issues
pull/1072/head
MSilva95 2 years ago committed by GitHub
parent
commit
f426327be5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      subjects/ascii-art-web/dockerize/audit.md
  2. 4
      subjects/btreetransplant/README.md
  3. 3
      subjects/social-network/README.md
  4. 3
      subjects/ztail/README.md

4
subjects/ascii-art-web/dockerize/audit.md

@ -39,12 +39,8 @@ exit
student$
```
###### Is the file system of the containers well organized?
###### Does the DockerFile contain some [metadata](https://docs.docker.com/config/labels-custom-metadata/) applied to the docker object?
###### Does the project present no [unused object](https://docs.docker.com/config/pruning/)?
###### As an auditor, is this project up to every standard? If not, why are you failing the project?(Empty Work, Incomplete Work, Invalid compilation, Cheating, Crashing, Leaks)
#### General

4
subjects/btreetransplant/README.md

@ -30,8 +30,8 @@ func main() {
piscine.BTreeInsertData(root, "7")
piscine.BTreeInsertData(root, "5")
node := piscine.BTreeSearchItem(root, "1")
replacement := &piscine.TreeNode{Data: "3"}
root = piscine.BTreeTransplant(root, node, replacement)
rplc := &piscine.TreeNode{Data: "3"}
root = piscine.BTreeTransplant(root, node, rplc)
piscine.BTreeApplyInorder(root, fmt.Println)
}
```

3
subjects/social-network/README.md

@ -218,6 +218,9 @@ Every other notification created by you that isn't on the list is welcomed too.
- [golang-migrate](https://github.com/golang-migrate/migrate/)
- [sql-migration](https://pkg.go.dev/github.com/rubenv/sql-migrate)
- [migration](https://pkg.go.dev/github.com/Boostport/migration)
- [sqlite3](https://github.com/mattn/go-sqlite3)
- [bcrypt](https://pkg.go.dev/golang.org/x/crypto/bcrypt)
- [UUID](https://github.com/satori/go.uuid)
This project will help you learn about:

3
subjects/ztail/README.md

@ -18,8 +18,11 @@ If `file1.txt` & `file2.txt` contains :
```
abcdefghijklmnopqrstuvwxyz
```
**Note** that the files above end with a new line.
Normal cases :
```

Loading…
Cancel
Save