Fix import typo

pull/38/head
Fenny 2020-02-05 01:17:31 +01:00
parent 3b3dba3fcb
commit 6d0e4257e8
6 changed files with 13 additions and 9 deletions

View File

@ -73,4 +73,4 @@ If we enable http pipelining, test result as below:
This benchmark is outdated
![](static/benchmarks/cpubound_benchmark.png) -->
_Caught a mistake? [Edit this page on GitHub!](https://github.com/Fenny/fiber/blob/master/docs/benchmarks.md)_
_Caught a mistake? [Edit this page on GitHub!](https://github.com/gofiber/fiber/blob/master/docs/benchmarks.md)_

View File

@ -1204,4 +1204,4 @@ app.Listen(8080)
```
_Caught a mistake? [Edit this page on GitHub!](https://github.com/Fenny/fiber/blob/master/docs/context.md)_
_Caught a mistake? [Edit this page on GitHub!](https://github.com/gofiber/fiber/blob/master/docs/context.md)_

View File

@ -5,7 +5,7 @@
```go
package main
import "github.com/fenny/fiber"
import "github.com/gofiber/fiber"
func main() {
app := fiber.New()
@ -31,7 +31,7 @@ func main() {
```go
package main
import "github.com/fenny/fiber"
import "github.com/gofiber/fiber"
func main() {
app := fiber.New()
@ -51,7 +51,7 @@ func main() {
```go
package main
import "github.com/fenny/fiber"
import "github.com/gofiber/fiber"
func main() {
app := fiber.New()
@ -137,4 +137,4 @@ func main() {
}
```
_Caught a mistake? [Edit this page on GitHub!](https://github.com/Fenny/fiber/blob/master/docs/examples.md)_
_Caught a mistake? [Edit this page on GitHub!](https://github.com/gofiber/fiber/blob/master/docs/examples.md)_

View File

@ -11,4 +11,4 @@ Special thanks to some amazing people and organizations:
[@pillarjs](https://github.com/pillarjs) / [Path-to-regexp](https://github.com/pillarjs/path-to-regexp/blob/master/LICENSE)
[@techempower](https://github.com/TechEmpower) / [FrameworkBenchmarks](https://github.com/TechEmpower/FrameworkBenchmarks)
_Caught a mistake? [Edit this page on GitHub!](https://github.com/Fenny/fiber/blob/master/docs/license.md)_
_Caught a mistake? [Edit this page on GitHub!](https://github.com/gofiber/fiber/blob/master/docs/license.md)_

View File

@ -76,7 +76,7 @@ app.Get("/user/:name?", func(c *fiber.Ctx) {
#### Middleware
The [Next](context#next) function is a function in the [Fiber](https://github.com/fenny/fiber) router which, when called, executes the next function that matches the current route.
The [Next](context#next) function is a function in the [Fiber](https://github.com/gofiber/fiber) router which, when called, executes the next function that matches the current route.
Functions that are designed to make changes to the request or response are called middleware functions.
@ -104,4 +104,4 @@ app.Get("/", func(c *fiber.Ctx) {
app.Listen(8080)
```
_Caught a mistake? [Edit this page on GitHub!](https://github.com/Fenny/fiber/blob/master/docs/routing.md)_
_Caught a mistake? [Edit this page on GitHub!](https://github.com/gofiber/fiber/blob/master/docs/routing.md)_

View File

@ -114,6 +114,10 @@ code .token {
.gitter-chat-embed-action-bar {
background: none;
}
.markdown-section code {
background-color: #3ea07f;
color: #fff;
}
@media screen and (max-width:768px) {
.sidebar-toggle {
padding: 10px;