Skip to content

Commit

Permalink
Fix Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdhilahiRWabwire committed Dec 28, 2024
1 parent da62b83 commit 6ed9ad2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 14 deletions.
10 changes: 0 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,6 @@ git clone

dart pub upgrade

dart compile js
```

OR

```shell
git clone

dart pub upgrade

dart run build_runner build

dart run build_runner serve
Expand Down
4 changes: 2 additions & 2 deletions lib/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

<body>
<main>
<textarea class="notes" name="notes" id="notes" rows="7">
<p>
Data Interchange
</textarea>
</p>
</main>
</body>
</html>
6 changes: 4 additions & 2 deletions server/source/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ import (
"net/http"
)

const port string = ":8080"

var fileServer http.Handler = http.FileServer(http.Dir("./lib"))

func main() {
const port string = ":8080"
var fileServer http.Handler = http.FileServer(http.Dir("./lib"))
fmt.Println("Serving on Port: 8080")
http.ListenAndServe(port, fileServer)
}

0 comments on commit 6ed9ad2

Please sign in to comment.