Skip to content

Commit 2ff6d3c

Browse files
Ryan Skidmorescannell
Ryan Skidmore
authored andcommitted
Fixed typos
Summary: Fixed typos Reviewed By: @scannell Pulled By: @scannell Test Plan: - php -l and checkModule -
1 parent 7aee17c commit 2ff6d3c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# HHVM [![Build Status](https://travis-ci.org/facebook/hhvm.png?branch=master)](https://travis-ci.org/facebook/hhvm)
22

3-
HHVM (aka the HipHop Virtual Machine) is a new open-source virtual machine designed for executing programs written in PHP. HHVM uses a just-in-time compilation approach to achieve superior performance while maintaining the flexibility that PHP developers are accustomed to. To date, HHVM (and its precedessor HPHPc before it) has realized over a 9x increase in web request throughput and over a 5x reduction in memory consumption for Facebook compared with the Zend PHP 5.2 engine + APC.
3+
HHVM (aka the HipHop Virtual Machine) is a new open-source virtual machine designed for executing programs written in PHP. HHVM uses a just-in-time compilation approach to achieve superior performance while maintaining the flexibility that PHP developers are accustomed to. To date, HHVM (and its predecessor HPHPc before it) has realized over a 9x increase in web request throughput and over a 5x reduction in memory consumption for Facebook compared with the Zend PHP 5.2 engine + APC.
44

55
HHVM can be run as a standalone webserver (i.e. without the Apache webserver and the "modphp" extension). HHVM can also be used together with a FastCGI-based webserver, and work is in progress to make HHVM work smoothly with Apache.
66

configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
if [ "$1" = '--help' ] || [ "$1" = '-h' ]; then
44
echo 'usage: ./configure -Dvariable=argument ...\n'
55
echo 'Variables: '
6-
echo ' CMAKE_BUILD_TYPE=Debug|Release Sets build type (default Relase).'
6+
echo ' CMAKE_BUILD_TYPE=Debug|Release Sets build type (default Release).'
77

88
exit 2
99
fi

configure_ubuntu_12.04.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#########################################
22
#
3-
# Install all the dependancies for HipHop
3+
# Install all the dependencies for HipHop
44
#
55
#########################################
66

@@ -22,11 +22,11 @@ fi
2222
export CMAKE_PREFIX_PATH=`/bin/pwd`/..
2323
export HPHP_HOME=`/bin/pwd`
2424

25-
# install python-software-properties before trying to add a PPA
25+
# install python-software-properties before trying to add a PPA
2626
sudo apt-get -y update
2727
sudo apt-get install -y python-software-properties
2828

29-
# install apt-fast to speedup later dependency installation
29+
# install apt-fast to speed up later dependency installation
3030
sudo add-apt-repository -y ppa:apt-fast/stable
3131
sudo apt-get -y update
3232
sudo apt-get -y install apt-fast

0 commit comments

Comments
 (0)