From 5a900bb63de7076bf129183a515db83b20aa4a03 Mon Sep 17 00:00:00 2001 From: Rahul Singh <81744029+rahul2103@users.noreply.github.com> Date: Tue, 7 Jul 2026 00:53:42 +0530 Subject: [PATCH] Fix typos and enhance clarity in README.md Corrected typos and improved clarity in the README. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 156c6f9..a11d8bb 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,9 @@ Instant [jemalloc](http://www.canonware.com/jemalloc/) injection into Ruby apps, # Why jemalloc? -Ruby relies on malloc(3) for its internal memory allocation. Using better malloc() implementation will boost your application performance, and supress the memory usage. +Ruby relies on malloc(3) for its internal memory allocation. Using a better malloc() implementation will boost your application performance and suppress memory usage. -jemalloc is a malloc(3) implementation, originally developed by Jason Evans. jemalloc handles small object better than other allocators so usually gives better performance and memory usage to Ruby programs. +jemalloc is a malloc(3) implementation, originally developed by Jason Evans. jemalloc handles small objects better than other allocators, so usually gives better performance and memory usage to Ruby programs. # Why jemalloc? @@ -14,7 +14,7 @@ Installing jemalloc separately from Ruby is pain in some cases (e.g. Heroku, Eng # Install -Install `jemalloc` gem in your application. For [bundler](http://gembundler.com/) based application, please add the following line into your Gemfile, and and install `jemalloc` by `bundle install`. +Install `jemalloc` gem in your application. For [bundler](http://gembundler.com/) based application, please add the following line into your Gemfile, and install `jemalloc` by `bundle install`. gem 'jemalloc'