From 52ca452ebc750f77b53323f67ed9f7a2a372d077 Mon Sep 17 00:00:00 2001 From: Patrick McCarty Date: Sat, 25 Jul 2009 00:58:37 -0700 Subject: [PATCH] Docs: IR: improve docstring for ly:context-property --- lily/context-scheme.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lily/context-scheme.cc b/lily/context-scheme.cc index 9ce9a9baa0..aef5404768 100644 --- a/lily/context-scheme.cc +++ b/lily/context-scheme.cc @@ -69,14 +69,14 @@ LY_DEFINE (ly_context_pushpop_property, "ly:context-pushpop-property", } LY_DEFINE (ly_context_property, "ly:context-property", - 2, 0, 0, (SCM c, SCM name), - "Return the value of @var{name} from context @var{c}.") + 2, 0, 0, (SCM context, SCM sym), + "Return the value for property @var{sym} in @var{context}.") { - LY_ASSERT_SMOB (Context, c, 1); - LY_ASSERT_TYPE (ly_is_symbol, name, 2); + LY_ASSERT_SMOB (Context, context, 1); + LY_ASSERT_TYPE (ly_is_symbol, sym, 2); - Context *t = unsmob_context (c); - return t->internal_get_property (name); + Context *t = unsmob_context (context); + return t->internal_get_property (sym); } LY_DEFINE (ly_context_set_property_x, "ly:context-set-property!", -- 2.39.5