From e5c75a00cd20ddc8f61cbc174c186c03c663b336 Mon Sep 17 00:00:00 2001 From: arzoo14 Date: Fri, 1 Mar 2019 01:54:10 +0530 Subject: [PATCH] fix_typos --- CONTRIBUTING.md | 2 +- lib/rubyplot.rb | 2 -- lib/rubyplot/artist/axes.rb | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9118320..5a13f17 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -81,7 +81,7 @@ can use to either 'zoom out' fully and see everything that is front of you, or y The only difference is that in case of viewports there is no actual zooming in but only demarcation of areas within the canvas that are to treated as the 'world'. -The implication on rubyplot would be that an `Axes` within a `Figure` would get mappped +The implication on rubyplot would be that an `Axes` within a `Figure` would get mapped to a `viewport` and the plotting within the viewport would take place by setting up the world co-ordinates to between the X and Y range. diff --git a/lib/rubyplot.rb b/lib/rubyplot.rb index e293c1f..1f0e505 100644 --- a/lib/rubyplot.rb +++ b/lib/rubyplot.rb @@ -1,7 +1,5 @@ require 'bigdecimal' - require 'rmagick' - require 'rubyplot/color' require 'rubyplot/utils' require 'rubyplot/version' diff --git a/lib/rubyplot/artist/axes.rb b/lib/rubyplot/artist/axes.rb index 192f070..4599450 100644 --- a/lib/rubyplot/artist/axes.rb +++ b/lib/rubyplot/artist/axes.rb @@ -317,5 +317,5 @@ def set_yrange @y_axis.max_val = @y_range[1] end end # class Axes - end # moudle Artist + end # module Artist end # module Rubyplot