File: spelling.patch

package info (click to toggle)
libalgorithm-svm-perl 0.13-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 436 kB
  • sloc: cpp: 3,051; perl: 364; makefile: 5
file content (20 lines) | stat: -rw-r--r-- 641 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Author: Andreas Tille <tille@debian.org>
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=122483
Last-Update: 2017-04-20
Description: Fix spelling in man page

--- a/lib/Algorithm/SVM.pm
+++ b/lib/Algorithm/SVM.pm
@@ -104,10 +104,10 @@ Algorithm::SVM - Perl bindings for the l
   # Load a saved model from a file.
   $svm->load('new-sample.model');
 
-  # Retreive the number of classes.
+  # Retrieve the number of classes.
   $num = $svm->getNRClass();
 
-  # Retreive labels for dataset classes
+  # Retrieve labels for dataset classes
   (@labels) = $svm->getLabels();
 
   # Probabilty for regression models, see below for details