From 36e6fb37b889590e423171ab612db4623eb39160 Mon Sep 17 00:00:00 2001 From: kataras Date: Thu, 3 Aug 2017 00:43:43 +0300 Subject: [PATCH] remove second "and" from sessions/sessiondb/file#SerializeBytes comment. Former-commit-id: b648f43eb2827dbb682ef3aac7f99643a15619a5 --- README.md | 38 ++++------------------------- sessions/sessiondb/file/database.go | 2 +- 2 files changed, 6 insertions(+), 34 deletions(-) diff --git a/README.md b/README.md index 66764ced..2c68ccb9 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Iris is a fast, simple and efficient micro web framework for Go. It provides a beautifully expressive and easy to use foundation for your next website, API, or distributed app. -[![total used by](http://iris-go.com/graph?style=flat-square)](http://iris-go.com/graph) + [![build status](https://img.shields.io/travis/kataras/iris/master.svg?style=flat-square)](https://travis-ci.org/kataras/iris) [![report card](https://img.shields.io/badge/report%20card-a%2B-ff3333.svg?style=flat-square)](http://goreportcard.com/report/kataras/iris) [![github issues](https://img.shields.io/github/issues/kataras/iris.svg?style=flat-square)](https://github.com/kataras/iris/issues?q=is%3Aopen+is%3Aissue) @@ -51,33 +51,6 @@ Iris is a fast, simple and efficient micro web framework for Go. It provides a b * [Get Hired](#-get-hired) * [People](#-people) - - ### 🚀 Installation The only requirement is the [Go Programming Language](https://golang.org/dl/), at least version 1.8 @@ -203,7 +176,7 @@ The same day, later the night, I was reading a book about Greek mythology. I saw I'm still here [because Iris has succeed in being the fastest go web framework](https://raw.githubusercontent.com/smallnest/go-web-framework-benchmark/4db507a22c964c9bc9774c5b31afdc199a0fe8b7/benchmark.png) -[![](http://comments.iris-go.com/screens/comment37.png)](https://twitter.com/ThePracticalDev/status/892022594031017988) +[![](http://comments.iris-go.com/screens/comment37.png)](https://twitter.com/ThePracticalDev/status/892022594031017988) ![](https://docs.iris-go.com/comment36.png) @@ -312,7 +285,6 @@ The _iris_ philosophy is to provide robust tooling for HTTP, making it a great s _iris_ does not force you to use any specific ORM. With support for the most popular template engines, websocket server and a fast sessions manager you can quickly craft your perfect application. - The awesome _iris_ community is always adding new examples, [_examples](_examples/) is a great place to get started! Read the [godocs](https://godoc.org/github.com/kataras/iris) for a better understanding. @@ -335,11 +307,11 @@ $ go get -u github.com/iris-contrib/middleware/... #### 📈 One and a half years with You... -- 7070 github stars -- 749 github forks +- 7210 github stars +- 766 github forks - 1m total views at its documentation - ~800$ at donations (there're a lot for a golang open-source project, thanks to you) -- ~550 reported bugs fixed +- ~554 reported bugs fixed - ~30 community feature requests have been implemented Thank You for your trust! diff --git a/sessions/sessiondb/file/database.go b/sessions/sessiondb/file/database.go index ceb68b7f..f6edcfb0 100644 --- a/sessions/sessiondb/file/database.go +++ b/sessions/sessiondb/file/database.go @@ -110,7 +110,7 @@ func (d *Database) Update(sid string, newValues map[string]interface{}, expireDa } } -// SerializeBytes serializes the "m" into bytes using gob encoder and and returns the result. +// SerializeBytes serializes the "m" into bytes using gob encoder and returns the result. func SerializeBytes(m interface{}) ([]byte, error) { buf := new(bytes.Buffer) enc := gob.NewEncoder(buf)