关于code style

关于code style

perldoc CGI 中有如下内容(大家可以自己看下):

       For example, using the object oriented style, here is how you create a simple "Hello World" HTML page:

          #!/usr/local/bin/perl -w
          use CGI;                             # load CGI routines
          $q = new CGI;                        # create new CGI object
          print $q->header,                    # create the HTTP header
                $q->start_html(’hello world’), # start the HTML
                $q->h1(’hello world’),         # level 1 header
                $q->end_html;                  # end the HTML

在实际显示内容中,$->start_html(' hello world' )
hello与'间是否有空格,world 与'中是否同样有空格?

如果有,有何用意呢?

对这有点不理解,希望各位指教。
没看到有空格啊。