Just some random typos I saw while reading docs and code. (If you'd prefer for me to do something like git pull-request instead let me know.)
From 1b0a57245d8ab53964990bb4c0cacc5f100859b1 Mon Sep 17 00:00:00 2001 From: Evan Martin <[email protected]> Date: Mon, 6 Apr 2009 09:49:39 -0700 Subject: [PATCH 1/3] [docs] Fix a typo
--- tests/README | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tests/README b/tests/README index 5904884..7aaf450 100644 --- a/tests/README +++ b/tests/README @@ -8,5 +8,5 @@ The micro-bench/ tests should be focused perfomance test, ideally testing a sing The interactive/ tests are any tests whos status can not be determined without a user looking at some visual output, or providing some manual input etc. This covers most of the original Clutter tests. Ideally some of these tests will be migrated into the conformance/ directory so they can be used in automated nightly tests. Other notes: -All tests should ideally include a detailed description in the source explaining exactly what the test is for, how the test was designed to work, and possibly a rationale for the aproach taken for testing. +All tests should ideally include a detailed description in the source explaining exactly what the test is for, how the test was designed to work, and possibly a rationale for the approach taken for testing. -- 1.6.1.3.19.ge43a
From fc677a8ae35b77c86095c8031c5b11e1c854fd50 Mon Sep 17 00:00:00 2001 From: Evan Martin <[email protected]> Date: Mon, 6 Apr 2009 09:51:02 -0700 Subject: [PATCH 2/3] [docs] Drop reference to SVN --- HACKING | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/HACKING b/HACKING index 0c83b8f..32accb5 100644 --- a/HACKING +++ b/HACKING @@ -131,7 +131,8 @@ RELEASES In making a new release; - - Check out a fresh copy from SVN. + - Verify your working directory is fresh; i.e., check out a fresh copy + or "git reset --hard release_branch && git clean -f". - Verify versioning in configure.ac, increasing relevant clutter_major_version/clutter_minor_version/clutter_micro_version -- 1.6.1.3.19.ge43a
From ced9da56d32acdfcbd51e8a38efa7f4d6bec1e08 Mon Sep 17 00:00:00 2001 From: Evan Martin <[email protected]> Date: Wed, 1 Jul 2009 11:09:04 -0700 Subject: [PATCH 3/3] [cogl] Fix a typo in a comment --- clutter/cogl/cogl-path.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/clutter/cogl/cogl-path.h b/clutter/cogl/cogl-path.h index be5a979..b630539 100644 --- a/clutter/cogl/cogl-path.h +++ b/clutter/cogl/cogl-path.h @@ -169,7 +169,7 @@ void cogl_path_rel_line_to (float x, * @center_x: X coordinate of the elliptical arc center * @center_y: Y coordinate of the elliptical arc center * @radius_x: X radius of the elliptical arc - * @radius_y: Y radious of the elliptical arc + * @radius_y: Y radius of the elliptical arc * @angle_1: Angle in the unit-circle at which the arc begin * @angle_2: Angle in the unit-circle at which the arc ends * -- 1.6.1.3.19.ge43a
